ComponentOne Bitmap for WinForms
C1.Win.C1DX.4.5.2 Assembly / C1.Util.DX.Direct2D Namespace / BitmapBrush Class / Create Method / Create(RenderTarget,Bitmap,Nullable<BitmapBrushProperties>,Nullable<BrushProperties>) Method
an instance of RenderTarget
The bitmap contents of the new brush.
The extend modes and interpolation mode of the new brush, or NULL. If this parameter is NULL, the brush defaults to the ExtendMode.Clamp horizontal and vertical extend modes and the BitmapInterpolationMode.Linear interpolation mode.
The opacity and transform of the new brush, or NULL. If this parameter is NULL, the brush defaults to an opacity of 1.0f and its transform is the identity matrix.

In This Topic
    Create(RenderTarget,Bitmap,Nullable<BitmapBrushProperties>,Nullable<BrushProperties>) Method
    In This Topic
    Creates an BitmapBrush from the specified bitmap.
    Syntax
    'Declaration
     
    Public Overloads Shared Function Create( _
       ByVal renderTarget As RenderTarget, _
       ByVal bitmap As Bitmap, _
       ByVal bitmapBrushProperties As System.Nullable(Of BitmapBrushProperties), _
       ByVal brushProperties As System.Nullable(Of BrushProperties) _
    ) As BitmapBrush
    public static BitmapBrush Create( 
       RenderTarget renderTarget,
       Bitmap bitmap,
       System.Nullable<BitmapBrushProperties> bitmapBrushProperties,
       System.Nullable<BrushProperties> brushProperties
    )

    Parameters

    renderTarget
    an instance of RenderTarget
    bitmap
    The bitmap contents of the new brush.
    bitmapBrushProperties
    The extend modes and interpolation mode of the new brush, or NULL. If this parameter is NULL, the brush defaults to the ExtendMode.Clamp horizontal and vertical extend modes and the BitmapInterpolationMode.Linear interpolation mode.
    brushProperties
    The opacity and transform of the new brush, or NULL. If this parameter is NULL, the brush defaults to an opacity of 1.0f and its transform is the identity matrix.
    See Also